how to deploy skywalking on kubernetes1.19

  1. install helm(centos8)

    curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3
    chmod +x get_helm.sh
    ./get_helm.sh
    ln -s /usr/local/bin/helm /usr/bin/helm
    
  2. install skywalking

    yum install git -y
    git clone https://github.com/apache/skywalking-kubernetes.git
    cd chart
    helm repo add elastic https://helm.elastic.co
    helm dep up skywalking
    helm install skywalking skywalking --set elasticsearch.enabled=false --set elasticsearch.config.host=es-cluster --set elasticsearch.config.port.http=9200
    
  3. references:

    https://github.com/apache/skywalking-kubernetes